From c77e12a215ab20fb311c8d62c9ffd3119bb6d294 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 8 May 2013 10:19:08 -0400 Subject: [PATCH] Make key themes work again This was inadvertedly broken in commit 44ba5d253f5bbda2d5a42c58218ad2aa318256f4. Thanks to Matthew Francis for tracking this down and providing a fix in https://bugzilla.gnome.org/show_bug.cgi?id=699901 --- gtk/gtkcssstylepropertyimpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkcssstylepropertyimpl.c b/gtk/gtkcssstylepropertyimpl.c index ea3cb36c69..c189ea691c 100644 --- a/gtk/gtkcssstylepropertyimpl.c +++ b/gtk/gtkcssstylepropertyimpl.c @@ -476,7 +476,7 @@ bindings_value_parse_one (GtkCssParser *parser) return NULL; } - if (g_ascii_strcasecmp (name, "none")) + if (g_ascii_strcasecmp (name, "none") == 0) { name = NULL; } -- 2.30.2